home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #1 / Cd 1 (black) - 2001.iso / K-CS.dcr / 02839_Hilite, toggle by mouse.ls < prev    next >
Encoding:
Text File  |  2000-11-15  |  982 b   |  34 lines

  1. property ItemState
  2.  
  3. on new me
  4.   set the visible of sprite the currentSpriteNum to 1
  5.   set the visible of sprite (the currentSpriteNum + 1) to 0
  6.   set the visible of sprite (the currentSpriteNum + 2) to 0
  7.   set the visible of sprite (the currentSpriteNum + 3) to ItemState
  8. end
  9.  
  10. on mouseEnter me
  11.   set the visible of sprite (the currentSpriteNum + 1) to 1
  12. end
  13.  
  14. on mouseLeave me
  15.   set the visible of sprite (the currentSpriteNum + 1) to 0
  16. end
  17.  
  18. on mouseDown
  19. end
  20.  
  21. on mouseUp
  22.   set Seen to the visible of sprite (the currentSpriteNum + 3)
  23.   set the visible of sprite (the currentSpriteNum + 3) to 1 - Seen
  24. end
  25.  
  26. on getBehaviorDescription
  27.   return "Hilite two fields for descriptions. Third field is intended for a toggling bitmap (checkboxes and such). The paramitra is 1 for default on, 0 for default off."
  28. end
  29.  
  30. on getPropertyDescriptionList
  31.   set p_list to [#ItemState: [#default: ItemState, #format: #integer, #comment: "Initial state", #range: [#min: 0, #max: 1]]]
  32.   return p_list
  33. end
  34.